home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / comm / mail / AM119bin.lha / aminstall < prev    next >
Text File  |  1993-02-27  |  3KB  |  112 lines

  1. ;
  2. ;
  3. ;  AM --- AmigaMail
  4. ;  (C) 1991 by Christian Riede
  5. ;
  6. ;  AM is distributed in the hope that it will be useful, but WITHOUT ANY
  7. ;  WARRANTY.  No author or distributor accepts responsibility to anyone
  8. ;  for the consequences of using it or for whether it serves any
  9. ;  particular purpose or works at all, unless he says so in writing.
  10. ;  Refer to the GNU General Public License, Version 1, for full details.
  11. ;  
  12. ;  Everyone is granted permission to copy, modify and redistribute AM,
  13. ;  but only under the conditions described in the GNU General Public
  14. ;  License, Version 1.  A copy of this license is supposed to have been 
  15. ;  given to you along with AM so you can know your rights and responsi-
  16. ;  bilities.  It should be in a file named COPYING.  Among other things,
  17. ;  the copyright notice and this notice must be preserved on all copies.
  18. ;
  19. ;
  20. ;
  21. ;
  22.  
  23.  
  24. echo "Installation procedure of AM (AmigaMail) V1.19beta"
  25. echo "You must have AmigaUUCP or AmigaUUCP+ installed as"
  26. echo "described in the documentation to that software"
  27.  
  28. echo
  29.  
  30. ask "proceed? (Y,N)"
  31.  
  32. if not warn 
  33.     skip end
  34. endif
  35.  
  36. if not exists uulib:am.config
  37.     copy am.config uulib: clone
  38. endif
  39.  
  40. echo "copying lmail"
  41. copy lmail uucp:c clone
  42.  
  43. echo "copying sendm"
  44. copy sendm uucp:c clone
  45. protect uucp:c/sendm s add
  46.  
  47. echo "copying makecontents"
  48. copy makecontents uucp:c clone
  49.  
  50. echo "copying amkill"
  51. copy amkill uucp:c clone
  52.  
  53. if exists uucp:c/contentsserver
  54.     echo "Attention, contentsserver is no longer in UUCP:C!!!"
  55.     echo "Please remove it from s:startup-sequence as is will"
  56.     echo "be automatically started from sys:wbstartup"
  57.     delete uucp:c/contentsserver
  58. endif
  59.  
  60. echo "copying contentsserver"
  61. copy contentsserver contentsserver.info to sys:wbstartup clone
  62.  
  63. echo "copying am"
  64. copy AM AM.info DisplayMail to uucp:c clone
  65.  
  66. echo "copying newmail"
  67. copy newmail newmail.info to sys:wbstartup clone
  68.  
  69. echo "installing metamail"
  70. copy metamail richtext splitmail ezview showpartial savefile to uucp:c clone
  71. if exists uulib:mailcap
  72.     ask "Shall I overwrite uulib:mailcap ?"
  73.     if warn
  74.         copy mailcap uulib: clone
  75.     endif
  76. else
  77.     copy mailcap uulib: clone
  78. endif
  79. if not exists uucp:c/show-startup
  80.     copy show-startup uucp:c clone
  81.     echo "please edit uucp:c/show-startup as described in am.doc"
  82. endif
  83. copy showPBM showJPEG showPGM showXWD showILBM showGIF showDVI showTEXT playUlawSound to uucp:c clone
  84.  
  85.  
  86. if not exists libs:ixemul.library
  87.     if exists contrib/ixemul.library
  88.         echo "installing ixemul.library"
  89.         copy contrib/ixemul.library libs: clone
  90.     else
  91.         echo "You have no ixemul.library installed."
  92.         echo "It can be found in the contrib archive"
  93.     endif
  94. endif
  95.  
  96. echo "Installation succesfull,"
  97.  
  98. echo  >t:eimer "To: Home of AM <am@senga.ka.sub.org>"
  99. echo >>t:eimer "Cc: postmaster"
  100. echo >>t:eimer "Subject: AM V1.19beta has been installed"
  101. echo >>t:eimer ""
  102. echo >>t:eimer "AM V1.19beta has succesfully been installed here"
  103. echo >>t:eimer ""
  104. if exists uulib:.signature 
  105.     type >>t:eimer uulib:.signature
  106. endif
  107. sendmail <t:eimer -f postmaster
  108.  
  109. echo "mail sent to Home of AM <am@senga.ka.sub.org>"
  110.  
  111. lab end
  112.